ci: add Cargo and kraft-hyperlight caching - #18
Merged
Merged
Conversation
- Add Swatinem/rust-cache to every job that runs cargo build/test - Replace manual Go tarball download with actions/setup-go - Cache kraft-hyperlight binary (keyed on workflow file hash) - Replace cargo install --git with local cargo build on Windows (avoids re-cloning the repo; lets rust-cache take effect) Signed-off-by: danbugs <danilochiarlone@gmail.com>
danbugs
enabled auto-merge
May 13, 2026 00:24
Contributor
There was a problem hiding this comment.
Linux Benchmarks
Details
| Benchmark suite | Current: 5fce4c3 | Previous: 10bdc20 | Ratio |
|---|---|---|---|
hello_world (median) |
20 ms |
20 ms |
1 |
pandas (median) |
100 ms |
120 ms |
0.83 |
density (per VM) |
6 MB |
6 MB |
1 |
snapshot (disk) |
648 MiB |
648 MiB |
1 |
This comment was automatically generated by workflow using github-action-benchmark.
Contributor
There was a problem hiding this comment.
Windows Benchmarks
Details
| Benchmark suite | Current: 5fce4c3 | Previous: 10bdc20 | Ratio |
|---|---|---|---|
hello_world (median) |
202 ms |
281 ms |
0.72 |
pandas (median) |
652 ms |
996 ms |
0.65 |
density (per VM) |
6 MB |
6 MB |
1 |
snapshot (disk) |
673 MiB |
673 MiB |
1 |
This comment was automatically generated by workflow using github-action-benchmark.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Swatinem/rust-cacheto every job that runscargo build/cargo test(host-checks, bench-linux, bench-windows, runtime-test, runtime-test-windows, pyhl-snapshot-test, publish-kernels)curlGo tarball download withactions/setup-go@v5across all workflowskraft-hyperlightbinary viaactions/cache(keyed on workflow file hash) — skips the git clone + Go build on cache hitcargo install --gitwith localcargo build --releaseon Windows jobs (bench-windows, runtime-test-windows, pyhl-snapshot-test) — avoids redundant repo clone and lets rust-cache take effectExpected savings: ~3-8 min per Cargo job on cache hits, ~60-90s per kraft-hyperlight cache hit, eliminates redundant git clones on Windows.